home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Indispensables / Movie Collection / MovieCollection5403.exe / {app} / web / FreeBrowser / index.xsl < prev   
Extensible Markup Language  |  2005-08-08  |  1KB  |  43 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:output method="html" media-type="text/html; charset=ISO-8859-1"/>
  4.  
  5. <xsl:template match="/">
  6.    <html>
  7.       <body>
  8.          <div>
  9.             <u>Versions</u> <br /> <br />
  10.             <ul>
  11.                <li>FreeBrowser: <b>~fbver~</b></li>
  12.                <li>Plugin Movie Collection: <b>~pluginver~</b></li>
  13.             </ul>
  14.              <hr noshade="1" />
  15.          </div>
  16.          <br />
  17.           <div>
  18.             <u>Liste AlphabΘtique</u> <br /> <br />
  19.             <ul>
  20.                <li><a href="../mc?action=films&order=nom&sens=asc">A->Z</a> - <a href="../mc?action=films&order=nom&sens=desc">Z->A</a></li>
  21.             </ul>
  22.              <hr noshade="1" />
  23.          </div>
  24.          
  25.          <u><xsl:value-of select="count(//top10ajouts/top10ajout)" /> derniers films ajoutΘs:</u> <br /> <br />
  26.          <xsl:for-each select="//top10ajouts/top10ajout">
  27.             <ul>
  28.                <li><xsl:value-of select="@dateajout" /> :
  29.                <a>
  30.                   <xsl:attribute name="href">../mc?action=film&idx=<xsl:value-of select="@idx"/></xsl:attribute>
  31.                   <xsl:value-of select="@nom"/>
  32.                </a>
  33.                </li>
  34.             </ul>
  35.          </xsl:for-each>
  36.       </body>
  37.    </html>
  38. </xsl:template>
  39.  
  40.  
  41.  
  42. </xsl:stylesheet>
  43.